projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a18b8cd
)
Fix compilation warning: cast to GTK_LABEL()
author
Javier Jardón
<jjardon@gnome.org>
Wed, 2 Dec 2009 01:11:59 +0000
(
02:11
+0100)
committer
Javier Jardón
<jjardon@gnome.org>
Wed, 2 Dec 2009 01:11:59 +0000
(
02:11
+0100)
This was introduced in commit
478ca88ae5393c422f7c72795d7dd0df29108511
gtk/gtkaboutdialog.c
patch
|
blob
|
history
diff --git
a/gtk/gtkaboutdialog.c
b/gtk/gtkaboutdialog.c
index dd6266c24443871538cad275b7efc0139c82ac9c..92aad3db6622c2a0cfe7b60e4f91a60df14409ad 100644
(file)
--- a/
gtk/gtkaboutdialog.c
+++ b/
gtk/gtkaboutdialog.c
@@
-842,7
+842,7
@@
update_website (GtkAboutDialog *about)
priv->website_url, priv->website_url);
}
- gtk_label_set_markup (
priv->website_label
, markup);
+ gtk_label_set_markup (
GTK_LABEL (priv->website_label)
, markup);
g_free (markup);
}
else